projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f869bab
)
(dired-insert-directory): Force use of C locale.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 4 Jan 1996 00:32:19 +0000
(
00:32
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 4 Jan 1996 00:32:19 +0000
(
00:32
+0000)
lisp/dired.el
patch
|
blob
|
history
diff --git
a/lisp/dired.el
b/lisp/dired.el
index 7da15bc2df03eed681e240f2f436615646282bf9..6bf16084c008583512380c4af0066d0c06e5f13c 100644
(file)
--- a/
lisp/dired.el
+++ b/
lisp/dired.el
@@
-562,7
+562,11
@@
If DIRNAME is already in a dired buffer, that buffer is used without refresh."
;; inset all files listed in the cdr (the car is the passed-in directory
;; list).
(let ((opoint (point))
+ (process-environment (copy-sequence process-environment))
end)
+ ;; This makes sure that month names come out in English
+ ;; so we can find the start of the file name.
+ (setenv "LC_ALL" "C")
(if (consp dir-or-list)
;; In this case, use the file names in the cdr
;; exactly as originally given to dired-noselect.